home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / graphics / rectfill.c < prev    next >
C/C++ Source or Header  |  1996-11-08  |  1KB  |  58 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: rectfill.c,v 1.6 1996/11/08 11:27:56 aros Exp $    $Log
  4.  
  5.     Desc: Graphics function RectFill()
  6.     Lang: english
  7. */
  8. #include "graphics_intern.h"
  9. #include <graphics/rastport.h>
  10.  
  11. /*****************************************************************************
  12.  
  13.     NAME */
  14.     #include <graphics/rastport.h>
  15.     #include <clib/graphics_protos.h>
  16.  
  17.     AROS_LH5(void, RectFill,
  18.  
  19. /*  SYNOPSIS */
  20.     AROS_LHA(struct RastPort *, rp, A1),
  21.     AROS_LHA(LONG             , xMin, D0),
  22.     AROS_LHA(LONG             , yMin, D1),
  23.     AROS_LHA(LONG             , xMax, D2),
  24.     AROS_LHA(LONG             , yMax, D3),
  25.  
  26. /*  LOCATION */
  27.     struct GfxBase *, GfxBase, 51, Graphics)
  28.  
  29. /*  FUNCTION
  30.  
  31.     INPUTS
  32.  
  33.     RESULT
  34.  
  35.     NOTES
  36.  
  37.     EXAMPLE
  38.  
  39.     BUGS
  40.  
  41.     SEE ALSO
  42.  
  43.     INTERNALS
  44.  
  45.     HISTORY
  46.     29-10-95    digulla automatically created from
  47.                 graphics_lib.fd and clib/graphics_protos.h
  48.  
  49. *****************************************************************************/
  50. {
  51.     AROS_LIBFUNC_INIT
  52.     AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
  53.  
  54.     driver_RectFill (rp, xMin, yMin, xMax, yMax, GfxBase);
  55.  
  56.     AROS_LIBFUNC_EXIT
  57. } /* RectFill */
  58.